home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / ARCHIVE / TAR4DOS.ZIP;1 / UNIX.TXT < prev   
Encoding:
Text File  |  1994-06-11  |  24.1 KB  |  531 lines

  1.  
  2.    LINUX INFO
  3.  
  4.    Subject: Linux INFO-SHEET
  5.    Reply-To: johnsonm@sunsite.unc.edu
  6.    Summary: This posting contains a quick summary of the features and
  7.     abilities of the Linux operating system.  It is a supplement
  8.     to the comp.os.linux.announce FAQ and META-FAQ, and should
  9.     be read by those wishing to learn about and/or install Linux.
  10.  
  11.    Archive-name: linux/info-sheet
  12.    Last-modified: 14 Mar 94
  13.    Version: 3.06
  14.  
  15.                         Linux Information Sheet 
  16.  
  17.                              Version 3.06 
  18.  
  19.  
  20.    0.1 Introduction to Linux 
  21.  
  22.    Linux is a completely free reimplementation of the POSIX spec, 
  23.    with SYSV and BSD extensions (which means, it looks like unix, 
  24.    but does not come from the same source code base), which is 
  25.    available in both source code and binary form. It is copyrighted 
  26.    by Linus B. Torvalds (torvalds@kruuna.helsinki.fi) and other 
  27.    contributors and is freely redistributable under the terms of 
  28.    the GNU Public License. Linux runs only on 386/486 machines with 
  29.    an ISA or EISA bus. MCA (IBM's proprietary bus) is not currently 
  30.    supported because there is little available documentation. VLB 
  31.    and PCI local busses are both supported, although the NCR SCSI 
  32.    chip that is used in many PCI machines is not yet supported, but 
  33.    is currently in development. 
  34.  
  35.    Porting to other CPU's is likely to be difficult, as the kernel 
  36.    makes extensive use of 386 memory management and task 
  37.    primitives. However, this is becoming easier as the kernel 
  38.    becomes more general, and there is a port in progress for 
  39.    multiple Motorola 680x0 platforms, and ports are being 
  40.    considered to other platforms as well. Don't hold your breath, 
  41.    but if you are interested and able to contribute, you may find 
  42.    other developers who wish to work with you. 
  43.  
  44.    Linux is no longer considered to be in beta testing, as version 
  45.    1.0 was released on March 14, 1994. There are still bugs in the 
  46.    system, and new bugs will creep up and be fixed as time goes on. 
  47.    Because Linux follows the ``open development model'', all new 
  48.    versions will be released to the public, whether or not they are 
  49.    considered ``production quality''. 
  50.  
  51.    Linux is still free as of version 1.0, and will continue to be. 
  52.    Because of the nature of the GNU copyright which Linux is 
  53.    subject to, it would be illegal for it to be made not free. 
  54.  
  55.    If you wish to make sure that you have a stable version of 
  56.    Linux, you may get version 1.0, or may wait a few weeks from the 
  57.    release of a version which has attained the reputation of being 
  58.    stable among the bleeding edge who already use it, or may wait 
  59.    for another version which is officially released as a stable 
  60.    release, like version 1.0. 
  61.  
  62.    Most versions of Linux, beta or not, are quite stable, and you 
  63.    can keep using those if they do what you need and you don't want 
  64.    to be on the bleeding edge. One site had a computer running 
  65.    version 0.97 patchlevel 1 (dating from last summer) for over 136 
  66.    days without an error or crash. (It would have been longer if 
  67.    the backhoe operator hadn't mistaken a main power transformer 
  68.    for a dumpster...) 
  69.  
  70.    One thing to be aware of is that Linux is developed using an 
  71.    open and distributed model, instead of a closed and centralized 
  72.    model like much other software. This means that the current 
  73.    development version is always public (with up to a week or two's 
  74.    delay) so that anybody can use it. The result is that whenever a 
  75.    version with new functionality is released, it almost always 
  76.    contains bugs, but it also results in a very rapid development 
  77.    so that the bugs are found and corrected quickly, often in 
  78.    hours, as many people work to fix them. Furthermore, the bugs 
  79.    are generally discovered within hours of a kernel release, 
  80.    especially those which might endanger a user's data, so it is 
  81.    easy for an end-user to avoid these bugs. 
  82.  
  83.    In contrast, the closed and centralized model means that there 
  84.    is only one person or team working on the project, and they only 
  85.    release software that they think is working well. Often this 
  86.    leads to long intervals between releases, long waiting for bug 
  87.    fixes, and slower development. Of course, the latest release of 
  88.    such software to the public is often of higher quality, but the 
  89.    development speed is generally much slower. 
  90.  
  91.    As of March 14, 1994, the current version of Linux is 1.0! 
  92.  
  93.  
  94.    0.2 Linux Features 
  95.  
  96.  
  97.     * multitasking: several programs running at once. 
  98.  
  99.     * multiuser: several users on the same machine at once (and NO 
  100.       two-user licenses!). 
  101.  
  102.     * runs in 386 protected mode. 
  103.  
  104.     * has memory protection between processes, so that one program 
  105.       can't bring the whole system down. 
  106.  
  107.     * demand loads executables: Linux only reads from disk those 
  108.       parts of a program that are actually used. 
  109.  
  110.     * shared copy-on-write pages among executables. This means that 
  111.       multiple process can use the same memory to run in. When one 
  112.       tries to write to that memory, that page (4KB piece of 
  113.       memory) is copied somewhere else. Copy-on-write has two 
  114.       benefits: increasing speed and decreasing memory use. 
  115.  
  116.     * virtual memory using paging (not swapping whole processes) to 
  117.       disk: to a separate partition or a file in the filesystem, or 
  118.       both, with the possibility of adding more swapping areas 
  119.       during runtime (yes, they're still called swapping areas). A 
  120.       total of 16 of these 128 MB swapping areas can be used at 
  121.       once, for a theoretical total 2 GB of useable swap space. 
  122.  
  123.     * a unified memory pool for user programs and disk cache (so 
  124.       that all free memory can be used for caching, and the cache 
  125.       can be reduced when running large programs). 
  126.  
  127.     * dynamically linked shared libraries (DLL's)(static libraries 
  128.       too, of course). 
  129.  
  130.     * does core dumps for post-mortem analysis, allowing the use of 
  131.       a debugger on a program not only while it is running but also 
  132.       after it has crashed. 
  133.  
  134.     * mostly compatible with POSIX, System V, and BSD at the source 
  135.       level. 
  136.  
  137.     * all source code is available, including the whole kernel and 
  138.       all drivers, the development tools and all user programs; 
  139.       also, all of it is freely distributable. There are some 
  140.       commercial programs being provided for Linux now without 
  141.       source, but everything that has been free is still free. 
  142.  
  143.     * POSIX job control. 
  144.  
  145.     * pseudoterminals (pty's). 
  146.  
  147.     * 387-emulation in the kernel so that programs don't need to do 
  148.       their own math emulation. Every computer running Linux 
  149.       appears to have a math coprocessor. Of course, if your 
  150.       computer already contains an FPU, it will be used instead of 
  151.       the emulation, and you can even compile your own kernel with 
  152.       math emulation removed, for a small memory gain. 
  153.  
  154.     * support for many national or customized keyboards, and it is 
  155.       fairly easy to add new ones. 
  156.  
  157.     * multiple virtual consoles: several independent login sessions 
  158.       through the console, you switch by pressing a hot-key 
  159.       combination (not dependent on video hardware). 
  160.  
  161.     * Supports several common filesystems, including minix-1, 
  162.       Xenix, and all the system V filesystems, and has an advanced 
  163.       filesystem of its own, which offers filesystems of up to 4 
  164.       TB, and names up to 255 characters long. 
  165.  
  166.     * transparent access to MS-DOS partitions (or OS/2 FAT 
  167.       partitions) via a special filesystem: you don't need any 
  168.       special commands to use the MS-DOS partition, it looks just 
  169.       like a normal Unix filesystem (except for funny restrictions 
  170.       on filenames, permissions, and so on). MS-DOS 6 compressed 
  171.       partitions do not work at this time. 
  172.  
  173.     * read-only HPFS-2 support for OS/2 2.1 
  174.  
  175.     * CD-ROM filesystem which reads all standard formats of 
  176.       CD-ROMs. 
  177.  
  178.     * TCP/IP networking, including ftp, telnet, NFS, etc. 
  179.  
  180.  
  181.    0.3 Hardware Issues 
  182.  
  183.  
  184.    0.3.1 Minimal configuration 
  185.  
  186.    The following is probably the smallest possible configuration 
  187.    that Linux will work on: 386SX/16, 2 MB RAM, 1.44 MB or 1.2 MB 
  188.    floppy, any supported video card (+ keyboards, monitors, and so 
  189.    on of course). This should allow you to boot and test whether it 
  190.    works at all on the machine, but you won't be able to do 
  191.    anything useful. 
  192.  
  193.    In order to do something, you will want some hard disk space as 
  194.    well, 5 to 10 MB should suffice for a very minimal setup (with 
  195.    only the most important commands and perhaps one or two small 
  196.    applications installed, like, say, a terminal program). This is 
  197.    still very, very limited, and very uncomfortable, as it doesn't 
  198.    leave enough room to do just about anything, unless your 
  199.    applications are quite limited. It's generally not recommended 
  200.    for anything but testing if things work, and of course to be 
  201.    able to brag about small resource requirements. 
  202.  
  203.  
  204.    0.3.2 Usable configuration 
  205.  
  206.    If you are going to run computationally intensive programs, such 
  207.    as gcc, X, and TeX, you will probably want a faster processor 
  208.    than a 386SX/16, but even that should suffice if you are 
  209.    patient. 
  210.  
  211.    In practice, you need at least 4 MB of RAM if you don't use X, 
  212.    and 8 MB if you do. Also, if you want to have several users at a 
  213.    time, or run several large programs (compilations for example) 
  214.    at a time, you may want more than 4 MB of memory. It will still 
  215.    work with a smaller amount of memory (should work even with 2 
  216.    MB), but it will use virtual memory (using the hard drive as 
  217.    slow memory) and that will be so slow as to be unusable. 
  218.  
  219.    The amount of hard disk you need depends on what software you 
  220.    want to install. The normal basic set of Unix utilities, shells, 
  221.    and administrative programs should be comfortable in less than 
  222.    10 MB, with a bit of room to spare for user files. For a more 
  223.    complete system, get Slackware, MCC, TAMU, or (soon) Debian or 
  224.    Linux/PRO, and assume that you will need 60 to 200 MB, depending 
  225.    on what you choose to install and what distribution you get. Add 
  226.    whatever space you want to reserve for user files to these 
  227.    totals. With today's prices on hard drives, if you are buying a 
  228.    new system, it makes no sense to buy a drive that is too small. 
  229.    Get at least 200 MB, and you will not regret it. 
  230.  
  231.    Add more memory, more hard disk, a faster processor and other 
  232.    stuff depending on your needs, wishes and budget to go beyond 
  233.    the merely usable. In general, one big difference from DOS is 
  234.    that with Linux, adding memory makes a large difference, whereas 
  235.    with dos, extra memory doesn't make that much difference. This 
  236.    of course has something to do with DOS's 640KB limit. 
  237.  
  238.  
  239.    0.3.3 Supported hardware 
  240.  
  241.    CPU: Anything that runs 386 protected mode programs (all models 
  242.    of 386s and 486s should work; 286s don't work, and never will). 
  243.  
  244.    Architecture: ISA or EISA bus. MCA (mostly true blue PS/2's) 
  245.    does not work. Local busses (VLB and PCI) work. 
  246.  
  247.    RAM: Theoretically up to 1 GB. This has not been tested. Some 
  248.    people (including Linus) have noted that adding ram has slowed 
  249.    down their machine extremely without adding more cache at the 
  250.    same time, so if you add memory and find your machine slower, 
  251.    try adding more cache. 
  252.  
  253.    Data storage: Generic AT drives (IDE, 16 bit HD controllers with 
  254.    MFM or RLL) are supported, as are SCSI hard disks and CD-ROMs, 
  255.    with a supported SCSI adaptor. Generic XT controllers (8 bit 
  256.    controllers with MFM or RLL) are now also supported. Supported 
  257.    SCSI adaptors: Adaptec 1542, 1522, and 1740 in extended (not 
  258.    1542 compatible) mode, Seagate ST-01 and ST-02, Future Domain 
  259.    TMC-88x series (or any board based on the TMC950 chip) and 
  260.    TMC1660/1680, Ultrastor 14F, 24F and 34F, and Western Digital 
  261.    wd7000. SCSI and QIC-02 tapes are also supported. Support for 
  262.    QIC-80 tapes is now in ALPHA testing. Several CD-ROM devices are 
  263.    also supported, including Matsushita/Panasonic, Mitsumi, Sony, 
  264.    Soundblaster, Toshiba, and others. For exact models, check the 
  265.    hardware compatability HOWTO. 
  266.  
  267.    Video: VGA, EGA, CGA, or Hercules (and compatibles) work in text 
  268.    mode. For graphics and X, there is support for (at least) normal 
  269.    VGA, some super-VGA cards (most of the cards based on ET3000, 
  270.    ET4000, Paradise, and some Trident chipsets), S3 (except for 
  271.    Diamond Stealth cards, because the manufacturer won't tell how 
  272.    to program it), 8514/A, ATI MACH8, ATI MACH32, and hercules. 
  273.    (Linux uses the Xfree86 X server, so that determines what cards 
  274.    are supported.) 
  275.  
  276.    Networking: Western Digital 80x3, ne1000, ne2000, 3com503, 
  277.    3com509, Allied Telliesis AT1500 (said to be some of the 
  278.    fastest, as well as quite cheap), d-link pocket adaptors, SLIP, 
  279.    CSLIP, PLIP (Parallel Link IP), and more I have forgotten at the 
  280.    moment. 
  281.  
  282.    Other hardware: SoundBlaster, ProAudio Spectrum 16, Gravis 
  283.    Ultrasound, AST Fourport cards (with 4 serial ports), several 
  284.    models of Boca serial boards, the Usenet Serial Card II, several 
  285.    flavours of bus mice (Microsoft, Logitech, PS/2). 
  286.  
  287.  
  288.    0.4 An Incomplete List of Ported Programs and Other Software 
  289.  
  290.  
  291.    Most of the common Unix tools and programs have been ported to 
  292.    Linux, including almost all of the GNU stuff and many X clients 
  293.    from various sources. Actually, ported is often too strong a 
  294.    word, since many programs compile out of the box without 
  295.    modifications, or only small modifications, because Linux tracks 
  296.    POSIX quite closely. Unfortunately, there are not very many 
  297.    end-user applications at this time. Nevertheless, here is an 
  298.    incomplete list of software that is known to work under Linux. 
  299.  
  300.    Basic Unix commands: ls, tr, sed, awk and so on (you name it, 
  301.    we've probably got it). 
  302.  
  303.    Development tools: gcc, gdb, make, bison, flex, perl, rcs, cvs, 
  304.    gprof. 
  305.  
  306.    Graphical environments: X11R5 (Xfree86), MGR. 
  307.  
  308.    Editors: GNU Emacs, Lucid Emacs, MicroEmacs, jove, epoch, elvis 
  309.    (GNU vi), vim, vile, joe, pico, jed. 
  310.  
  311.    Shells: Bash (POSIX sh-compatible), zsh (include ksh 
  312.    compatiblity mode), pdksh, tcsh, csh, rc, ash (mostly 
  313.    sh-compatible), and many more. 
  314.  
  315.    Telecommunication: Taylor (BNU-compatible) UUCP, kermit, szrz, 
  316.    minicom, pcomm, xcomm, term/slap (runs multiple shells over one 
  317.    modem line), Seyon (popular X-windows communications program), 
  318.    and several fax (using class 2 modems) and voice-mail (using 
  319.    ZyXEL modems) packages are available. Of course, remote serial 
  320.    logins are supported. 
  321.  
  322.    News and mail: C-news, innd, trn, nn, tin, smail, elm, mh. 
  323.  
  324.    Textprocessing: TeX, groff, doc. 
  325.  
  326.    Games: Nethack, several Muds and X games, and lots of others. 
  327.    One of those games is looking through all the games available at 
  328.    tsx-11 and sunsite. 
  329.  
  330.    All of these programs (and this isn't even a hundredth of what 
  331.    is available) are freely available. 
  332.  
  333.  
  334.    0.5 Who uses Linux? 
  335.  
  336.  
  337.    Linux is freely available, and no one is required to register 
  338.    their copies with any central authority, so it is difficult to 
  339.    know how many people use Linux. Several businesses are now 
  340.    surviving solely on selling and supporting Linux, and very few 
  341.    Linux users use those businesses, relatively speaking, and the 
  342.    Linux newsgroups are some of the most heavily read on the 
  343.    internet, so the number is likely in the hundreds of thousands, 
  344.    but hard numbers are hard to come by. However, one brave soul, 
  345.    Harald T. Alvestrand, has decided to try, and asks that if you 
  346.    use Linux, you send a message to linux-counter@uninett.no with 
  347.    one of the following subjects: ``I use Linux at home'', ``I use 
  348.    Linux at work'', or ``I use Linux at home and at work''. He is 
  349.    also counting votes of ``I don't use Linux'', for some reason. 
  350.    He posts his counts to comp.os.linux.misc. 
  351.  
  352.  
  353.    0.6 Getting Linux 
  354.  
  355.  
  356.    0.6.4 Anonymous FTP 
  357.  
  358.    New information: Matt Welsh has released a new version of hiw 
  359.    Installation and Getting Started guide. Also, the Linux 
  360.    documentation project (the LDP) has put out several other books 
  361.    in various states of completion, and these are available at 
  362.    sunsite.unc.edu:/pub/Linux/docs/LDP. Stay tuned to 
  363.    comp.os.linux.announce. 
  364.  
  365.    At least the following anonymous ftp sites carry Linux. 
  366.  
  367.     Textual name                   Numeric address  Linux directory
  368.     =============================  ===============  ===============
  369.     tsx-11.mit.edu                 18.172.1.2       /pub/linux
  370.     sunsite.unc.edu                152.2.22.81      /pub/Linux
  371.     ftp.funet.fi                   128.214.248.6    /pub/OS/Linux
  372.     net.tamu.edu                   128.194.177.1    /pub/linux
  373.     ftp.mcc.ac.uk                  130.88.203.12    /pub/linux
  374.     src.doc.ic.ac.uk               146.169.2.1      /packages/linux
  375.     fgb1.fgb.mw.tu-muenchen.de     129.187.200.1    /pub/linux
  376.     ftp.informatik.tu-muenchen.de  131.159.0.110    /pub/Linux
  377.     ftp.dfv.rwth-aachen.de         137.226.4.111    /pub/linux
  378.     ftp.informatik.rwth-aachen.de  137.226.112.172  /pub/Linux
  379.     ftp.ibp.fr                     132.227.60.2     /pub/linux
  380.     kirk.bond.edu.au               131.244.1.1      /pub/OS/Linux
  381.     ftp.uu.net                     137.39.1.9       /systems/unix/linux
  382.     wuarchive.wustl.edu            128.252.135.4    mirrors/linux
  383.     ftp.win.tue.nl                 131.155.70.100   /pub/linux
  384.     ftp.stack.urc.tue.nl           131.155.2.71     /pub/linux
  385.     srawgw.sra.co.jp                                /Linux
  386.     cair.kaist.ac.kr                                /pub/Linux
  387.     ftp.denet.dk                   129.142.6.74     /pub/OS/linux
  388.     NCTUCCCA.edu.tw                140.111.1.10     /Operating-Systems/Linux
  389.     nic.switch.ch                  130.59.1.40      /mirror/linux/sunsite
  390.     monu1.ccmonash.edu.au          130.194.1.101    /pub/linux
  391.     cnuce_arch.cnr.it              131.114.1.10     /pub/Linux
  392.  
  393.  
  394.    tsx-11.mit.edu and fgb1.fgb.mw.tu-muenchen.de are the official 
  395.    sites for Linux' GCC. Some sites mirror other sites. Please use 
  396.    the site closest (network-wise) to you whenever possible. 
  397.  
  398.    At least SunSite.unc.edu and ftp.informatik.tu-muenchen.de offer 
  399.    ftpmail services. Mail ftpmail@sunsite.unc.edu or 
  400.    ftp@informatik.tu-muenchen.de for help. 
  401.  
  402.    If you are lost, try looking at 
  403.    SunSite.unc.edu:/pub/Linux/distributions/, where several 
  404.    distributions are offered. 
  405.  
  406.    0.6.5 Other methods of obtaining Linux 
  407.  
  408.    There are many BBS's that have Linux files. A list of them is 
  409.    occasionally posted to comp.os.linux.announce. Ask friends and 
  410.    user groups, or order one of the commmercial distributions. A 
  411.    list of these is contained in the Linux distribution HOWTO, 
  412.    available as 
  413.    sunsite.unc.edu:/pub/Linux/docs/HOWTO/distribution-HOWTO, and 
  414.    posted regularily to the comp.os.linux.announce newsgroup. 
  415.  
  416.    0.6.6 Getting started 
  417.  
  418.    As mentioned at the beginning, Linux is not centrally 
  419.    administered. Because of this, there is no ``official'' release 
  420.    that one could point at, and say ``That's Linux.'' Instead, 
  421.    there are various ``distributions,'' which are more or less 
  422.    complete collections of software configured and packaged so that 
  423.    they can be used to install a Linux system. 
  424.  
  425.    The first thing you should do is to get and read the list of 
  426.    Frequently Asked Questions (FAQ) from one of the FTP sites, or 
  427.    by using the normal Usenet FAQ archives (e.g. rtfm.mit.edu). 
  428.    This document has plenty of instructions on what to do to get 
  429.    started, what files you need, and how to solve most of the 
  430.    common problems (during installation or otherwise). 
  431.  
  432.  
  433.    0.7 Legal Status of Linux 
  434.  
  435.    Although Linux is supplied with the complete source code, it is 
  436.    copyrighted software, not public domain. However, it is 
  437.    available for free under the GNU Public License. See the GPL for 
  438.    more information. The programs that run under Linux each have 
  439.    their own copyright, although many of them use the GPL as well. 
  440.    X uses the MIT X copyright, and some utilities are under the BSD 
  441.    copyright. In any case, all of the software on the FTP site is 
  442.    freely distributable (or else it shouldn't be there). 
  443.  
  444.  
  445.    0.8 News About Linux 
  446.  
  447.    A new magazine called Linux Journal was recently launched. It 
  448.    includes articles intended for almost all skill levels, and is 
  449.    intended to be helpful to all Linux users. Subscriptions are 19 
  450.    USD worldwide. Subscription inquiries can be sent via email to 
  451.    linux@fylz.com or faxed to (U.S.) 1-203-454-2582 or mailed to 
  452.    Linux Journal, P.O. Box 3364, Westport, CT 06880-8364 USA. 
  453.    Please do not send credit card numbers via email; the internet 
  454.    is not secure, and it is entirely possible that a 
  455.    technologically adept thief may steal your credit card number 
  456.    and cost you a large sum of money if you do. 
  457.  
  458.  
  459.    There are several Usenet newsgroups for Linux discussion, and 
  460.    also several mailing lists. See the Linux FAQ for more 
  461.    information about the mailing lists (you should be able to find 
  462.    the FAQ either in the newsgroup or on the FTP sites). 
  463.  
  464.    The newsgroup comp.os.linux.announce is a moderated newsgroup 
  465.    for announcements about Linux (new programs, bug fixes, etc). 
  466.  
  467.    The newsgroup comp.os.linux.admin is an unmoderated newsgroup 
  468.    for discussion of administration of Linux systems. 
  469.  
  470.    The newsgroup comp.os.linux.development is an unmoderated 
  471.    newsgroup specifically for discussion of Linux kernel 
  472.    development. The only application development questions that 
  473.    should be discussed here are those that are intimately 
  474.    associated with the kernel. All other development questions are 
  475.    probably generic UNIX development questions and should be 
  476.    directed to a comp.unix group instead. 
  477.  
  478.    The newsgroup comp.os.linux.help is an unmoderated newsgroup for 
  479.    any Linux questions that don't belong anywhere else. 
  480.  
  481.    The newsgroup comp.os.linux.misc is the replacement for 
  482.    comp.os.linux, and is meant for any discussion that doesn't 
  483.    belong elsewhere. 
  484.  
  485.    In general, do not crosspost between the Linux newsgroups. The 
  486.    only crossposting that is appropriate is an occasional posting 
  487.    between one unmoderated group and comp.os.linux.announce. The 
  488.    whole point of splitting comp.os.linux into many groups is to 
  489.    reduce traffic in each. Those that do not follow this rule will 
  490.    be flamed without mercy... 
  491.  
  492.    For the current status of the Linux kernel and a summary of the 
  493.    most recent versions, finger torvalds@kruuna.helsinki.fi 
  494.  
  495.  
  496.    0.9 The Future 
  497.  
  498.  
  499.    Now that Linux 1.0 has been released, work is already in 
  500.    progress on several enhancements. Disk access speedups, TTY 
  501.    improvements, and many more things are being worked on. Linux 
  502.    1.0 is not the end of Linux, or is it even very important; it is 
  503.    mostly intended to provide a stable version that people can use 
  504.    without being afraid that they are using beta software, and that 
  505.    can be standardized on to some extent. 
  506.  
  507.    There is plenty of code left to write, and even more 
  508.    documentation. Please join the DOC channel of the mailing list 
  509.    if you would like to contribute to the documentation. 
  510.  
  511.  
  512.    0.10 This document 
  513.  
  514.    This document is maintained by Michael K. Johnson, 
  515.    johnsonm@Sunsite.unc.edu. Please mail me with any comments, no 
  516.    matter how small. I can't do a good job of maintaining this 
  517.    document without your help. A more-or-less current copy of this 
  518.    document can always be found as 
  519.    tsx-11.mit.edu:/pub/linux/docs/INFO-SHEET, and a DVI version can 
  520.    be found as INFO-SHEET.dvi, in the same directory. 
  521.  
  522.  
  523.    0.11 Legalese 
  524.  
  525.  
  526.    Trademarks are owned by their owners. There is no warranty about 
  527.    the information in this document. Use and distribute at your own 
  528.    risk. The content of this document is in the public domain, but 
  529.    please be polite and attribute any quotes. 
  530.  
  531.